Skip to content

Commit 46bb5fc

Browse files
committed
Update Python3 Version
1 parent 1858ef8 commit 46bb5fc

File tree

97 files changed

+99
-96
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+99
-96
lines changed

01-knapsack-problem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/python3
1+
#!/usr/bin/python3
22
# https://www.geeksforgeeks.org/0-1-knapsack-problem-dp-10/
33
# https://www.youtube.com/watch?v=fJbIuhs24zQ
44

3sum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/python3
1+
#!/usr/bin/python3
22
# https://leetcode.com/problems/3sum
33

44
from typing import List

6-type-knapsack-problem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/python3
1+
#!/usr/bin/python3
22
# https://www.geeksforgeeks.org/0-1-knapsack-problem-dp-10/
33
# https://www.youtube.com/watch?v=iBnWHZmlIyY
44
# https://leetcode.com/problems/partition-equal-subset-sum

Bash_Scripts/index.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
ps -l

CSES_Problem_Set/Bit-Strings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/python3
1+
#!/usr/bin/python3
22
# https://cses.fi/problemset/task/1617
33

44
if __name__ == '__main__':

CSES_Problem_Set/Coin-Piles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/python3
1+
#!/usr/bin/python3
22
# https://cses.fi/problemset/task/1754
33

44

CSES_Problem_Set/Distinct-Numbers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/python3
1+
#!/usr/bin/python3
22
# https://cses.fi/problemset/task/1621
33

44
if __name__ == '__main__':

CSES_Problem_Set/Increasing-Array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/python3
1+
#!/usr/bin/python3
22
# https://cses.fi/problemset/task/1094
33

44
if __name__ == '__main__':

CSES_Problem_Set/Missing-Number.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/python3
1+
#!/usr/bin/python3
22
# https://cses.fi/problemset/task/1083
33

44
if __name__ == '__main__':

CSES_Problem_Set/Repetitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/python3
1+
#!/usr/bin/python3
22
# https://cses.fi/problemset/task/1069
33

44
if __name__ == '__main__':

0 commit comments

Comments
 (0)