In my midterm CYA game, you come across 2 staircases, left and right. You have the option to choose which one you go to, the right advancing you and the left (e
I have a bunch of references for different filenames at the start of my code: _file1_="filename1" _file2_="filename2" _file3_="filename3" _filew1_="anothername
I apologize in advance for the title, my question is not that easy to explain on it. What I mean by that is the following: Having an array of type, 4x4, it has
I'm a newbie in Python. I have a sample.txt with random generated numbers, like: 190372210335873910924370795570288776927025955114012905862203094277820432758989
When I create a function and use arguments as variable names in group_by() function there is error: comb <- function(z,x,y) { df <- z %>% group
This code is currently showing the total amount needed to reach the next level, but what I would like it to do is show the complete total amount so for example
I have an array, made by using explode and the delimiter #. I'm trying without success to create from this big array in PHP subarrays (the num
This loop scrolls through the list of names on a web page and clicks on each "Add" button next to the name. It works well and correctly wait = WebDriverWait(dri
Hello I'm currently trying to create a page based on a database under mysql that would update itself for a client. However what I'm trying to
I am trying to insert 2 different ranges "x" amount of times based on the input from the user. The user chooses how many mounts they need "D22" and a range is c
I have 37 shapefiles with different names.Individually each of them represent a different part of a country. I would like to create a mosaic of my 37 shp to jus
While running the checkmarx on angular 13 project the report results a 'Unchecked Input For loop Condition' medium issue. Even after limiting the object length
I have the following dataframe: library(dplyr) library(tidyverse) library(concordance) Year <- c(2016,2016,2017,2019,2020,2020,2020,2013,2010,2010) Pf <-
the following code iterates through a list and counts every time the condition <10 is met. What I want to do is that once this condition is met, the next poi
I'm recreating a hangman game where I create a random word and conceal this with "". i.e if the word is "monkey" then the array should be ["", "", "", "", "", "
I have some code that creates a bunch of Creatures(cells) and they move around the screen and eat food. They all have an age variable so once they become a cert
in this code, I tried to decrease the quantity of products from the database when the user places the order, it is working but the problem is just decreasing fr
I am trying to iterate through a 3-D list in python(not numpy but I am willing to convert to a numpy array if this makes it easier) in such a way that from a li
Okay, to start with I should mention this is a very small personal project, and I've only have a handful of coding classes several years ago now. I can figure o
I would like to edit a local TOML file and save it again to be used in the same Python script. In this sense, to be able to change a given parameter in loop. Yo