This file contains 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
# I'm sure you already know about basic data types, like ints, floats, strings and bools, so let's start with loops and basic data structures. | |
# Let's see all the ways we might generate a sequence of numbers from 0-9. | |
# First, using a while loop and a list: | |
zero_to_nine = [] | |
i = 0 | |
while i < 10: | |
zero_to_nine.append(i) | |
i += 1 | |
This file contains 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
import sys | |
ans = sys.stdin.readline().split(" ") | |
guess = sys.stdin.readline().split(" ") | |
def count_white(ans, guess): | |
temp_ans = ans[:] | |
pegs = 0 | |
for i in guess: | |
if i in temp_ans: |
This file contains 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
General | |
Unique ID : 39283267530506054814815985473680893167 (0x1D8DAE9FBF187610E3061C098C58E4EF) | |
Complete name : F:\Video\Film (new)\+David Lynch Collection\lost.highway.1997.1080p.bluray.dd5.1.hevc.x265.rmteam\lost.highway.1997.1080p.bluray.dd5.1.hevc.x265.rmteam.mkv | |
Format : Matroska | |
Format version : Version 4 / Version 2 | |
File size : 1.56 GiB | |
Duration : 2 h 14 min | |
Overall bit rate : 1 667 kb/s | |
Movie name : - RMTeam, Rapidmoviez.com | |
Description : Encoded By RMTeam, Rapidmoviez.com |
This file contains 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
sprite = new Sprite({ | |
name: "bg", | |
texture: tex_diffuse, | |
size: Luxe.screen.size, | |
uv: Luxe.screen.bounds, | |
centered: false | |
}); | |
var target_texture:RenderTexture = new RenderTexture({ id:'rtt', width:512, height:512 }); | |
var batcher:Batcher = Luxe.renderer.create_batcher({ name:'target_batcher' }); |
NewerOlder