Skip to content

Commit 41cbedd

Browse files
committed
Merge pull request #19 from Twinters007/master
Fixed "Written By" statement
2 parents ac4d665 + ae41b65 commit 41cbedd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

065-python-basics-8.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# 65 - Python Basics 8
22

3-
*Written by Tim Winters
3+
*Written by Tim Winters*
44

55
## Problem
66
A boolean is a value that is either True or False. Given an list of arrays of integers as `[a,b]` stored in `args`, for each array, if the sum of `a + b <= 25` then concatenate the value "1" to represent the value `True` to a string. Otherwise, concatenate "0" to represent the value `False`.
77
## Hint
88

9-
I wonder if there's a built in sort function?
9+
Use your knowledge from previous problems and apply it here!
1010

1111
## Solution
1212
Python allows you to store an array as individual values in a for loop.

0 commit comments

Comments
 (0)