Skip to content

Commit b0d4893

Browse files
committed
4 out of 45 done
1 parent 1882f47 commit b0d4893

File tree

1 file changed

+1
-1
lines changed
  • exercises/006-apple_sharing

1 file changed

+1
-1
lines changed

exercises/006-apple_sharing/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
def apple_sharing(n,k):
22
# Your code here
3-
return None
3+
return (int(k/n), k%n)
44

55

66
print(apple_sharing(6,50))

0 commit comments

Comments
 (0)