Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Competitive-Coding-3 Done #934

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/Competitive_Coding-3.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions Problem1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Time Complexity = O(n) Space Complexity = O(n)
from collections import Counter
class Solution:
def findPairs(self, nums: list[int], k: int) -> int:
count = 0
c = Counter(nums)
for key, val in c.items():
if k == 0:
if val > 1:
count += 1
else:
if key + k in c:
count += 1

return count

14 changes: 14 additions & 0 deletions Problem2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
class Solution:
def generate(self, numRows: int) -> list[list[int]]:
dp = []
for i in range(1, numRows + 1):
dp.append([0] * i)

for i in range(0, numRows):
for j in range(0, i + 1):
if j == 0 or j == i:
dp[i][j] = 1
else:
# The previous values both are added together
dp[i][j] = dp[i - 1][j - 1] + dp[i - 1][j]
return dp
Empty file modified README.md
100644 → 100755
Empty file.
Empty file modified Sample.java
100644 → 100755
Empty file.