• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 14:01
CEST 20:01
KST 03:01
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Voting10[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Chinese SC2 server to reopen; live all-star event in Hangzhou17Weekly Cups (Oct 13-19): Clem Goes for Four2BSL Team A vs Koreans - Sat-Sun 16:00 CET6Weekly Cups (Oct 6-12): Four star herO85.0.15 Patch Balance Hotfix (2025-10-8)81
StarCraft 2
General
5.0.15 Patch Balance Hotfix (2025-10-8) RotterdaM "Serral is the GOAT, and it's not close" Weekly Cups (Oct 13-19): Clem Goes for Four Chinese SC2 server to reopen; live all-star event in Hangzhou Weekly Cups (March 17-23): Clem Bounces Back
Tourneys
RSL Season 2 Qualifier Links and Dates $1,200 WardiTV October (Oct 21st-31st) SC2's Safe House 2 - October 18 & 19 INu's Battles #13 - ByuN vs Zoun Tenacious Turtle Tussle
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 496 Endless Infection Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers
Brood War
General
SnOw's Awful Building Placements vs barracks Is there anyway to get a private coach? BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion BSL Season 21
Tourneys
[Megathread] Daily Proleagues 300$ 3D!Community Brood War Super Cup #4 [ASL20] Semifinal B Azhi's Colosseum - Anonymous Tournament
Strategy
Current Meta Roaring Currents ASL final [I] Funny Protoss Builds/Strategies BW - ajfirecracker Strategy & Training
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Nintendo Switch Thread Dawn of War IV ZeroSpace Megathread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine The Chess Thread Russo-Ukrainian War Thread Men's Fashion Thread
Fan Clubs
The herO Fan Club!
Media & Entertainment
Anime Discussion Thread Series you have seen recently... [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023 Formula 1 Discussion NBA General Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Sabrina was soooo lame on S…
Peanutsc
Our Last Hope in th…
KrillinFromwales
Certified Crazy
Hildegard
Rocket League: Traits, Abili…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2125 users

The Big Programming Thread - Page 223

Forum Index > General Forum
Post a Reply
Prev 1 221 222 223 224 225 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
delHospital
Profile Blog Joined December 2010
Poland261 Posts
December 26 2012 20:49 GMT
#4441
On December 27 2012 05:32 Perscienter wrote:
And please don't call functions in a print statement.

Why?
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
Last Edited: 2012-12-26 20:53:53
December 26 2012 20:49 GMT
#4442
On December 27 2012 05:45 Perscienter wrote:
Use only lower case characters, underscores and numbers for function names.

A style guide for Python can be found here: http://www.python.org/dev/peps/pep-0008/

It covers many aspects of formatting and how to name stuff.

Calling is not renaming it. You define a function and you can call it. That's applying it. The code, which is included in your function is not applied until you call or apply the function. In your example, it would be done after the while loop, but can't reach the end of it, because n never reaches 100, since you don't call the function inside the while loop.

It will become very clear to you, I have no doubt.


Thank you. I figured it out.
fibo = [1,2]
def create_fibo(x):
while len(fibo) < 100:
z = x[-1] + x[-2]
fibo.append(z)
create_fibo(fibo)
print fibo


Finally! I feel like such an idiot for not figuring that out on myself tho haha. But your explanation made it all very clear
LunaSea
Profile Joined October 2011
Luxembourg369 Posts
Last Edited: 2012-12-26 20:52:15
December 26 2012 20:50 GMT
#4443
I just changed your code a little bit and it works :

n = [1, 2]
def fibonnaci(n, x):
while len(n) < 100:
z = x[-1] + x[-2]
n.append(z)
return n
print(fibonnaci(n, n))


If you want to do it without a loop, a recursive function would also work :


n = [1, 2]
def fibonnaci(n, x):
if len(n) < 100:
z = x[-1] + x[-2]
n.append(z)
return fibonnaci(n, x)
return n
print(fibonnaci(n, n))


The reason I added parenthesis around after the print method is because it changed from Python 2.7 to Python 3.x.
"Your f*cking wrong, but I respect your opinion" --Day[9]
Fwmeh
Profile Joined April 2008
1286 Posts
December 26 2012 21:04 GMT
#4444
Now do it in time log(n) =P
A parser for things is a function from strings to lists of pairs of things and strings
Perscienter
Profile Joined June 2010
957 Posts
December 26 2012 21:05 GMT
#4445
On December 27 2012 05:49 delHospital wrote:
Show nested quote +
On December 27 2012 05:32 Perscienter wrote:
And please don't call functions in a print statement.

Why?

Well, I take that back. I'm just not used to it. In the Python shell it wouldn't matter.

But it only makes sense, when the function returns a value. So a generalized rejection of printing functions would be wrong. It does make sense, when functions return value and you want to print something, for instance in a console program.
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
December 26 2012 21:21 GMT
#4446
On December 27 2012 06:04 Fwmeh wrote:
Now do it in time log(n) =P


?
LunaSea
Profile Joined October 2011
Luxembourg369 Posts
Last Edited: 2012-12-26 21:45:56
December 26 2012 21:44 GMT
#4447
On December 27 2012 06:21 Recognizable wrote:
Show nested quote +
On December 27 2012 06:04 Fwmeh wrote:
Now do it in time log(n) =P


?


He's referring to the "big O" notation and algorithm complexity calculations.

Here is a pretty good post on the subject from Stackoverflow :

--> http://stackoverflow.com/questions/487258/plain-english-explanation-of-big-o
"Your f*cking wrong, but I respect your opinion" --Day[9]
Shenghi
Profile Joined August 2010
167 Posts
December 26 2012 22:41 GMT
#4448
On December 27 2012 06:04 Fwmeh wrote:
Now do it in time log(n) =P

Why do it in O(log(n)) when there's a closed form formula to do it in O(1)?
People are not born stupid, they choose to be stupid. If you made that choice, please change your mind.
Fwmeh
Profile Joined April 2008
1286 Posts
December 26 2012 22:50 GMT
#4449
On December 27 2012 07:41 Shenghi wrote:
Show nested quote +
On December 27 2012 06:04 Fwmeh wrote:
Now do it in time log(n) =P

Why do it in O(log(n)) when there's a closed form formula to do it in O(1)?

1) The closed formula will involve floats which are tricky
2) The closed formula will involve roots depending on the size, and roots are actually not in O(1), so the solution will not either
3) It is not very interesting to do it like that
^^
A parser for things is a function from strings to lists of pairs of things and strings
Shenghi
Profile Joined August 2010
167 Posts
December 26 2012 22:56 GMT
#4450
On December 27 2012 07:50 Fwmeh wrote:
Show nested quote +
On December 27 2012 07:41 Shenghi wrote:
On December 27 2012 06:04 Fwmeh wrote:
Now do it in time log(n) =P

Why do it in O(log(n)) when there's a closed form formula to do it in O(1)?

1) The closed formula will involve floats which are tricky
2) The closed formula will involve roots depending on the size, and roots are actually not in O(1), so the solution will not either
3) It is not very interesting to do it like that
^^

1) That's part of the challenge.
2) They are always the same roots (√5).
3) True. =]
People are not born stupid, they choose to be stupid. If you made that choice, please change your mind.
Fwmeh
Profile Joined April 2008
1286 Posts
December 26 2012 23:21 GMT
#4451
Well ok, you have to calculate (1+-√5)^n, and I don't think you can do that in constant time.
A parser for things is a function from strings to lists of pairs of things and strings
Shenghi
Profile Joined August 2010
167 Posts
December 28 2012 03:47 GMT
#4452
On December 27 2012 08:21 Fwmeh wrote:
Well ok, you have to calculate (1+-√5)^n, and I don't think you can do that in constant time.

I think I agree. If I recall correctly, the complexity of a^b is O(log(b)).
People are not born stupid, they choose to be stupid. If you made that choice, please change your mind.
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
Last Edited: 2012-12-28 19:58:56
December 28 2012 19:42 GMT
#4453
If you have a 2 dimensional list in Python. Why does len(list) return the length of the grid in the x-coordinate direction and len(list[0]) the length of the grid in the y-coordinate direction?
Here is an example of such a list.
O O O O O
O O O O O
O O O O O
Zeke50100
Profile Blog Joined February 2010
United States2220 Posts
December 28 2012 19:59 GMT
#4454
On December 29 2012 04:42 Recognizable wrote:
If you have a 2 dimensional list in Python. Why does len(list) return the length of the row(x-coordinate) and len(list[0]) the length of the column(y-coordinate)?


A 2 dimensional list is really just a list of lists.

The first dimension specifies which list you wish to access, and the second dimension specifies the term in the list. Using "row" and "column" is somewhat misleading because rows and columns are just visual representations (and not actually what's happening under the hood).

len(myList) will give you how many lists there are (in other words, the number of "rows") because myList is a list just like every other list - it just happens to be that the items in the list are lists themselves. Similarly, myList[0] will access list 0 stored in myList, and myList[1] will access list 1 in myList.

len(myList[0]) will give you how many terms are in the list stored in myList[0] (or the number of "columns" in myList, if myList is rectangular - myList[0] can be a list of numbers, puppies, cookies, etc.). When you type in something like myList[0][1], you're saying "What is element 1 in the list, myList[0]?"
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
Last Edited: 2012-12-28 20:22:37
December 28 2012 20:14 GMT
#4455
nvm, I understand thanks
Abductedonut
Profile Blog Joined December 2010
United States324 Posts
December 29 2012 08:43 GMT
#4456
Hello. I wanted to post something useful for those of you guys who are learning how to program. It is called a "Kata". A kata is basically an exercise that refines your programming skills. More importantly, when transitioning to a new language, you can program your katas in that language to get an understanding of how the program in that language. Rather than shifting through books re-learning the syntax, a kata will help you find the important aspects of that programming language.

One great kata is that of the bowling game kata, which can be found here:
http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata

There are several other katas on the internet that you can find - I just wanted to introduce the idea to you guys. Aside from katas, a lot of you come in asking for projects and things to practice programming on. CodeChef has a really great website for this. It splits up projects based on ranking (easy/medium/hard.. etc). As a bonus, there are monthly challenges, you can compare the memory usage and runtime of the programming languages used, and look at other peoples successful code. Link Here:
http://www.codechef.com/

It's important to try and program every day to get good at it! Happy programming guys. And happy new year!
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
December 29 2012 17:59 GMT
#4457
On December 29 2012 17:43 Abductedonut wrote:
Hello. I wanted to post something useful for those of you guys who are learning how to program. It is called a "Kata". A kata is basically an exercise that refines your programming skills. More importantly, when transitioning to a new language, you can program your katas in that language to get an understanding of how the program in that language. Rather than shifting through books re-learning the syntax, a kata will help you find the important aspects of that programming language.

One great kata is that of the bowling game kata, which can be found here:
http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata

There are several other katas on the internet that you can find - I just wanted to introduce the idea to you guys. Aside from katas, a lot of you come in asking for projects and things to practice programming on. CodeChef has a really great website for this. It splits up projects based on ranking (easy/medium/hard.. etc). As a bonus, there are monthly challenges, you can compare the memory usage and runtime of the programming languages used, and look at other peoples successful code. Link Here:
http://www.codechef.com/

It's important to try and program every day to get good at it! Happy programming guys. And happy new year!


Thanks, I'll look into this. Almost finished LPTHW and Codeacademy, and I'm stuck on project euler problem 3
AmericanUmlaut
Profile Blog Joined November 2010
Germany2580 Posts
December 29 2012 18:47 GMT
#4458
On December 30 2012 02:59 Recognizable wrote:
Show nested quote +
On December 29 2012 17:43 Abductedonut wrote:
Hello. I wanted to post something useful for those of you guys who are learning how to program. It is called a "Kata". A kata is basically an exercise that refines your programming skills. More importantly, when transitioning to a new language, you can program your katas in that language to get an understanding of how the program in that language. Rather than shifting through books re-learning the syntax, a kata will help you find the important aspects of that programming language.

One great kata is that of the bowling game kata, which can be found here:
http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata

There are several other katas on the internet that you can find - I just wanted to introduce the idea to you guys. Aside from katas, a lot of you come in asking for projects and things to practice programming on. CodeChef has a really great website for this. It splits up projects based on ranking (easy/medium/hard.. etc). As a bonus, there are monthly challenges, you can compare the memory usage and runtime of the programming languages used, and look at other peoples successful code. Link Here:
http://www.codechef.com/

It's important to try and program every day to get good at it! Happy programming guys. And happy new year!


Thanks, I'll look into this. Almost finished LPTHW and Codeacademy, and I'm stuck on project euler problem 3

That's the one where you need to get the largest prime factor of a really big number, right?

Some suggestions to help you on your way:

+ Show Spoiler +

1. Depending on the language you're using, you'll probably need a library to store the number you're factoring.
2. Do you know how to get the prime factors of a number by hand? If so, you just need an algorithm that does the same thing, then you return the largest result.
3. Performance hint: Instead of performing division on a big number, you can determine whether a number is divisible by 2 by looking just at the last bit.
The frumious Bandersnatch
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
December 29 2012 19:04 GMT
#4459
Is a library the same thing as a list? Can't find it on google.
windzor
Profile Joined October 2010
Denmark1013 Posts
December 29 2012 19:05 GMT
#4460
On December 30 2012 04:04 Recognizable wrote:
Is a library the same thing as a list? Can't find it on google.


In what context? My guess is, that in yours it's a no.
Yeah
Prev 1 221 222 223 224 225 1032 Next
Please log in or register to reply.
Live Events Refresh
OSC
16:00
Masters Cup #150 Qual 1-2
davetesta27
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ProTech103
BRAT_OK 95
UpATreeSC 75
Codebar 32
MindelVK 20
JuggernautJason8
StarCraft: Brood War
Bisu 1273
firebathero 425
Soulkey 178
Hyun 155
Mind 96
Movie 42
Yoon 34
scan(afreeca) 24
Rock 18
Mong 1
Dota 2
qojqva4981
Dendi1361
LuMiX1
Counter-Strike
fl0m1055
Other Games
Grubby1895
FrodaN1082
Beastyqt626
ceh9432
B2W.Neo404
mouzStarbuck229
KnowMe204
Skadoodle143
ArmadaUGS86
C9.Mang085
Trikslyr58
Mew2King53
QueenE51
OptimusSC23
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• maralekos1
• IndyKCrew
• AfreecaTV YouTube
• sooper7s
• intothetv
• Kozan
• Migwel
• LaughNgamezSOOP
StarCraft: Brood War
• Michael_bg 5
• Pr0nogo 4
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 2807
League of Legends
• Nemesis3523
• imaqtpie1379
• TFBlade704
Upcoming Events
Tenacious Turtle Tussle
4h 59m
The PondCast
15h 59m
OSC
17h 59m
WardiTV Invitational
1d 16h
Online Event
1d 21h
RSL Revival
2 days
RSL Revival
2 days
WardiTV Invitational
2 days
Afreeca Starleague
3 days
Snow vs Soma
Sparkling Tuna Cup
3 days
[ Show More ]
WardiTV Invitational
3 days
CrankTV Team League
3 days
RSL Revival
3 days
Wardi Open
4 days
CrankTV Team League
4 days
Replay Cast
5 days
WardiTV Invitational
5 days
CrankTV Team League
5 days
Replay Cast
6 days
CrankTV Team League
6 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
BSL 21 Non-Korean Championship
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
CranK Gathers Season 2: SC II Pro Teams
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.