This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# BLUEPRINT | DONT EDIT | |
import requests | |
movie_ids = [238, 680, 550, 185, 641, 515042, 152532, 120467, 872585, 906126, 840430] | |
# /BLUEPRINT | |
# ππ» YOUR CODE ππ»: | |
for movie_id in movie_ids: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
playing = True | |
while(playing): | |
a = int(input("Choose a number:\n")) | |
b = int(input("Choose another one:\n")) | |
operation = input( | |
"Choose an operation:\n Options are: + , - , * or /.\n Write 'exit' to finish.\n" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ππ» YOUR CODE ππ»: | |
# /YOUR CODE | |
def get_yearly_revenue(monthly_revenue): | |
""" | |
μκ°λ§€μΆμ μΈμλ‘ λ°μμ μ°κ° λ§€μΆμ 리ν΄νλ ν¨μ | |
""" | |
return monthly_revenue * 12 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package hello; | |
import java.util.concurrent.atomic.AtomicLong; | |
import org.springframework.web.bind.annotation.RequestMapping; | |
import org.springframework.web.bind.annotation.RequestParam; | |
import org.springframework.web.bind.annotation.RestController; | |
@RestController | |
public class GreetingController { |