var list = new List<string>() { // Assume some items in the list };
for (var i = 0; i < list.Count; i++)
{
var item = list[i];
list.Remove(item);
i--;
}
Simple alternative to List.Clear()
local Plr = game.Players.LocalPlayer
for i,v in pairs(game.ReplicatedStorage.DataStorage[Plr.Name].Data["Slot1"].AccessoriesList:GetChildren()) do
v.Value = "Unlocked"
end
for i,v in pairs(game.ReplicatedStorage.DataStorage[Plr.Name].Data["Slot1"].StanceList:GetChildren()) do
v.Value = "Unlocked"
end
for i,v in pairs(game.ReplicatedStorage.DataStorage[Plr.Name].Data["Slot1"].RunningList:GetChildren()) do
v.Value = "Unlocked"
end
for i,v in pairs(game.ReplicatedStorage.DataStorage[Plr.Name].Data["Slot1"].FlyingList:GetChildren()) do
v.Value = "Unlocked"
end
for i,v in pairs(game.ReplicatedStorage.DataStorage[Plr.Name].Data["Slot1"].FightingStyles:GetChildren()) do
v.Value = "Unlocked"
end
for i,v in pairs(game.ReplicatedStorage.DataStorage[Plr.Name].Data["Slot1"].MoveList:GetChildren()) do
v.Value = "Unlocked"
end
for i,v in pairs(game.ReplicatedStorage.DataStorage[Plr.Name].Data["Slot1"].ClothingList:GetChildren()) do
v.Value = "Unlocked"
end
Bad unlock script for Roblox
this.onSubmit = this.onSubmit.bind(this)
this.onClose = this.onClose.bind(this)
somewhere in react-native app
<table class="table table-sm o_main_table" style="width='100%'">
<!-- ... thanks ...-->
</table>
Found that on a customer's project, wonder if my employee knows about inline css
if ((&inactiveSlot)->GetFirstSlot() == RuntimeLib::INVALID_SLOT) {
Dot dude...
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main(void){
void run_func(char *map[], char *fnt , char *km , float *x , float *y , int line , int row , int lift );
char *long_met[3][8] = {{"mile","0.621371" , "yard","1093.61" , "fut","3280.84" , "duim","39370.1" } ,
{ "mile" ,"1.60934" , "yard","0.0009144" , "fut","0.0003048" , "duim","0.0000254"},
{"kilometer","1" , "meter","1000" , "stmeter","100000" , "mmeter","1000000" } };
char *amount[3][4] = { { "gallon" , "0.264172" , "quarta" , "1.05669" } ,
{"gallon" , " 3.78541" , "quarta" , "0.946353" },
{"litr" , "1" , "mililitr" , "1000" }};
char *mass[3][8] = { {"eng.tonna","0.984207" , "amer.tonna","1.10231" , "stone","157.473" , "funt","2204.62" } ,
{ "eng.tonna" , "1.01605" , "amer.tonna", "0.907185" , "stone","0.00635029" , "funt","0.000453592"},
{"tonna","1" , "kilogram" , "1000" , "miligram","100000" , "microgram","1000000" }};
char **cp;
char *buf_data;
char *fnt_sys;
char *mtr_sys;
char *word[100];
while(1){
int bg = 0,convert_ch = 3,y = 0, d = 0, numb = 0;
float mn =0 , xm = 0 ;
printf("%s", "enter data for converter: ");
fgets( (char *) word, 99 ,stdin);
buf_data = strtok((char *) word, " ");
if( ! strcmp(buf_data, "funt.sys" ) ){
convert_ch = 0;
}
else if( ! strcmp(buf_data, "metric.sys" ) ){
convert_ch = 1;
}
for( bg = 0 ; buf_data != NULL; buf_data = strtok(NULL, " ") , bg++ ) {
switch(bg){
case 1:
if( !strcmp("long_met" , buf_data ) ){
y = sizeof(*long_met) / sizeof(long_met[0][0]);
d = sizeof(long_met) / sizeof(long_met[0][0]);
cp = &long_met[convert_ch][0] ;
}
else if(!strcmp("amount" , buf_data ) ){
y = sizeof(*amount) / sizeof(amount [0][0]);
d = sizeof(amount) / sizeof(amount[0][0]);
cp = &amount[convert_ch][0] ;
}
else if(!strcmp("mass" , buf_data ) ){
y = sizeof(*mass ) / sizeof(mass[0][0]);
d = sizeof(mass ) / sizeof(mass[0][0]);
cp = &mass[convert_ch][0] ;
}
break;
case 2:
fnt_sys = buf_data;
break;
case 3:
mtr_sys = buf_data;
break;
case 4:
numb = atoi(buf_data);
break;
}
}
if( !y || !d || !cp || convert_ch == 3 || !numb ){
puts("error");
}
else{
run_func( cp, fnt_sys , mtr_sys , &mn , &xm , y , d , convert_ch );
if( !mn || !xm ){
puts("error");
} else{
printf("%f\n" , !convert_ch ? (mn / xm ) * numb : ( mn * xm ) * numb );
}
}
}
return 0;
}
void run_func(char *map[], char *fnt , char *km , float *x , float *y , int line , int row , int lift ){
int m ;
if( ( lift ) ){
row -= line;
}
for( m = 0 ; m <= line ; m++){
if(!strcmp(fnt,map[m])){
*x = atof(map[m + 1] ) ;
break;
}
}
for( m = (row - line) ; m <= row - 1 ; m++){
if( !strcmp( km , map[m] ) ){
*y = atof(map[m + 1 ] );
break;
}
}
}
public function getProfilePicture(Company $company, $id, $url = null) {
// @TODO: Figure out how to do this.
return null;
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
O | O | O
-----------
O | O | O
-----------
O | O | O
*/
package tictactoe;
import java.util.Scanner;
public class TicTacToe {
/**
* @param args the command line arguments
* @throws java.lang.InterruptedException
*/
public static void main(String[] args) throws InterruptedException {
Scanner input = new Scanner(System.in);
String a1 = "1";
String a2 = "2";
String a3 = "3";
String a4 = "4";
String a5 = "5";
String a6 = "6";
String a7 = "7";
String a8 = "8";
String a9 = "9";
int inO;
int inX = 0;
boolean winner = false;
PrintBoard(a1,a2,a3,a4,a5,a6,a7,a8,a9);
System.out.printf("How to play - wait for your turn and when it comes write the number of the field that you want to draw in (from 1 to 9)\n");
System.out.printf("Player O's turn: ");
inO = input.nextInt();
while (true) {
switch (inO) {
case 1:
if (a1 == "1") {
a1 = "O";
}
break;
case 2:
if (a2 == "2") {
a2 = "O";
}
break;
case 3:
if (a3 == "3") {
a3 = "O";
}
break;
case 4:
if (a4 == "4") {
a4 = "O";
}
break;
case 5:
if (a5 == "5") {
a5 = "O";
}
break;
case 6:
if (a6 == "6") {
a6 = "O";
}
break;
case 7:
if (a7 == "7") {
a7 = "O";
}
break;
case 8:
if (a8 == "8") {
a8 = "O";
}
break;
case 9:
if (a9 == "9") {
a9 = "O";
}
break;
default:
System.out.printf("An error occured. Please accept it politely and restart the game.");
break;
}
System.out.printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
if (null != Winners(a1,a2,a3,a4,a5,a6,a7,a8,a9))switch (Winners(a1,a2,a3,a4,a5,a6,a7,a8,a9)) {
case "NONE":
if (a1 != "1" && a2 != "2" && a3 != "3" && a4 != "4" && a5 != "5" && a6 != "6" && a7 != "7" && a8 != "8" && a9 != "9") {
winner = true;
System.out.println("DRAW!");
Thread.sleep(3000);
break;
} else {
PrintBoard(a1,a2,a3,a4,a5,a6,a7,a8,a9);
System.out.printf("Player X's turn: ");
inX = input.nextInt();
break;
}
case "X":
winner = true;
System.out.println("X HAS WON!!!");
Thread.sleep(3000);
break;
case "O":
winner = true;
System.out.printf("O HAS WON!!!");
Thread.sleep(3000);
break;
default:
break;
}
if (winner) {
break;
}
switch (inX) {
case 1:
if (a1 == "1") {
a1 = "X";
}
break;
case 2:
if (a2 == "2") {
a2 = "X";
}
break;
case 3:
if (a3 == "3") {
a3 = "X";
}
break;
case 4:
if (a4 == "4") {
a4 = "X";
}
break;
case 5:
if (a5 == "5") {
a5 = "X";
}
break;
case 6:
if (a6 == "6") {
a6 = "X";
}
break;
case 7:
if (a7 == "7") {
a7 = "X";
}
break;
case 8:
if (a8 == "8") {
a8 = "X";
}
break;
case 9:
if (a9 == "9") {
a9 = "X";
}
break;
default:
System.out.printf("An error occured. Please accept it politely and restart the game.");
break;
}
System.out.printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
if (null != Winners(a1,a2,a3,a4,a5,a6,a7,a8,a9))switch (Winners(a1,a2,a3,a4,a5,a6,a7,a8,a9)) {
case "NONE":
if (a1 != "1" && a2 != "2" && a3 != "3" && a4 != "4" && a5 != "5" && a6 != "6" && a7 != "7" && a8 != "8" && a9 != "9") {
winner = true;
System.out.println("DRAW!");
Thread.sleep(3000);
break;
} else {
PrintBoard(a1,a2,a3,a4,a5,a6,a7,a8,a9);
System.out.printf("Player O's turn: ");
inO = input.nextInt();
break;
}
case "X":
winner = true;
System.out.println("X HAS WON!!!");
Thread.sleep(3000);
break;
case "O":
winner = true;
System.out.println("O HAS WON!!!");
Thread.sleep(3000);
break;
default:
break;
}
if (winner) {
break;
}
}
}
public static void PrintBoard(String f1, String f2, String f3, String f4, String f5, String f6, String f7, String f8, String f9) {
System.out.printf(" %s | %s | %s \n",f1,f2,f3);
System.out.printf(" ----------- \n");
System.out.printf(" %s | %s | %s \n",f4,f5,f6);
System.out.printf(" ----------- \n");
System.out.printf(" %s | %s | %s \n",f7,f8,f9);
System.out.printf(" \n");
}
public static String Winners(String f1, String f2, String f3, String f4, String f5, String f6, String f7, String f8, String f9) {
if (f1 == f2 && f2 == f3 && f3 == "O") {
return "O";
} else if (f4 == f5 && f5 == f6 && f6 == "O") {
return "O";
} else if (f7 == f8 && f8 == f9 && f9 == "O") {
return "O";
} else if (f1 == f4 && f4 == f7 && f7 == "O") {
return "O";
} else if (f2 == f5 && f5 == f8 && f8 == "O") {
return "O";
} else if (f3 == f6 && f6 == f9 && f9 == "O") {
return "O";
} else if (f1 == f5 && f5 == f9 && f9 == "O") {
return "O";
} else if (f3 == f5 && f5 == f7 && f7 == "O") {
return "O";
} else if (f1 == f2 && f2 == f3 && f3 == "X") {
return "X";
} else if (f4 == f5 && f5 == f6 && f6 == "X") {
return "X";
} else if (f7 == f8 && f8 == f9 && f9 == "X") {
return "X";
} else if (f1 == f4 && f4 == f7 && f7 == "X") {
return "X";
} else if (f2 == f5 && f5 == f8 && f8 == "X") {
return "X";
} else if (f3 == f6 && f6 == f9 && f9 == "X") {
return "X";
} else if (f1 == f5 && f5 == f9 && f9 == "X") {
return "X";
} else if (f3 == f5 && f5 == f7 && f7 == "X") {
return "X";
} else {
return "NONE";
}
}
}
There are sooo many problems with this...
import java.util.Scanner;
public class ConnectFour
{
public static void main(String [] args) {
Scanner scan;
scan = new Scanner(System.in);
boolean win = false;
boolean oneone = false;
boolean onetwo = false;
boolean onethree = false;
boolean onefour = false;
boolean onefive = false;
boolean onesix = false;
boolean oneseven = false;
boolean twoone = false;
boolean twotwo = false;
boolean twothree = false;
boolean twofour = false;
boolean twofive = false;
boolean twosix = false;
boolean twoseven = false;
boolean threeone = false;
boolean threetwo = false;
boolean threethree = false;
boolean threefour = false;
boolean threefive = false;
boolean threesix = false;
boolean threeseven = false;
boolean fourone = false;
boolean fourtwo = false;
boolean fourthree = false;
boolean fourfour = false;
boolean fourfive = false;
boolean foursix = false;
boolean fourseven = false;
boolean fiveone = false;
boolean fivetwo = false;
boolean fivethree = false;
boolean fivefour = false;
boolean fivefive = false;
boolean fivesix = false;
boolean fiveseven = false;
boolean sixone = false;
boolean sixtwo = false;
boolean sixthree = false;
boolean sixfour = false;
boolean sixfive = false;
boolean sixsix = false;
boolean sixseven = false;
if(win = false) {
if(oneone = true) {
if(onetwo = true) {
if(onethree = true) {
if(onefour = true) {
winner = true;
}
}
}
else if(twotwo = true) {
if(threethree = true) {
if(fourfour = true) {
winner = true;
}
}
}
else if(twoone = true) {
if(threeone = true) {
if(fourone = true) {
winner = true;
}
}
}
}
if(onetwo = true) {
if(oneone = true) {
if(onethree = true) {
if(onefour = true) {
winner = true;
}
}
}
if(onethree = true) {
if(onefour = true) {
if(onefive = true) {
winner = true;
}
}
}
if(twothree = true) {
if(threefour = true) {
if(fourfive = true) {
winner = true;
}
}
}
if(twotwo = true) {
if(threetwo = true) {
if(fourtwo = true) {
winner = true;
}
}
}
}
if(onethree = true) {
if(oneone = true) {
if(onetwo = true) {
if(onefour = true) {
winner = true;
}
}
}
if(onetwo = true) {
if(onefour = true) {
if(onefive = true) {
winner = true;
}
}
}
if(onefour = true) {
if(onefive = true) {
if(onesix = true) {
winner = true;
}
}
}
if(twofour = true) {
if(threefive = true) {
if(foursix = true) {
winner = true;
}
}
}
if(twothree = true) {
if(threethree = true) {
if(fourthree = true) {
winner = true;
}
}
}
}
if(onefour = true) {
if(oneone = true) {
if(onetwo = true) {
if(onethree = true) {
winner = true;
}
}
}
if(onetwo = true) {
if(onethree = true) {
if(onefive = true) {
winner = true;
}
}
}
if(onethree = true) {
if(onefive = true) {
if(onesix = true) {
winner = true;
}
}
}
if(onefive = true) {
if(onesix = true) {
if(oneseven = true) {
winner = true;
}
}
}
if(twofive = true) {
if(threesix = true) {
if(fourseven = true) {
winner = true;
}
}
}
if(twothree = true) {
if(threetwo = true) {
if(fourone = true) {
winner = true;
}
}
}
if(twofour = true) {
if(threefour = true) {
if(fourfour = true) {
winner = true;
}
}
}
}
if(onefive = true) {
if(onetwo = true) {
if(onethree = true) {
if(onefour = true) {
winner = true;
}
}
}
if(onethree = true) {
if(onefour = true) {
if(onesix = true) {
winner = true;
}
}
}
if(onefour = true) {
if(onesix = true) {
if(oneseven = true) {
winner = true;
}
}
}
if(twofive = true) {
if(threefive = true) {
if(fourfive = true) {
winner = true;
}
}
}
if(twofour = true) {
if(threethree = true) {
if(fourtwo = true) {
winner = true;
}
}
}
}
if(onesix = true) {
if(onethree = true) {
if(onefour = true) {
if(onefive = true) {
winner = true;
}
}
}
if(onefour = true) {
if(onefive = true) {
if(oneseven = true) {
winner = true;
}
}
}
if(twosix = true) {
if(threesix = true) {
if(foursix = true) {
winner = true;
}
}
}
if(twofive = true) {
if(threefour = true) {
if(fourthree = true) {
winner = true;
}
}
}
}
if(oneseven = true) {
if(onefour = true) {
if(onefive = true) {
if(onesix = true) {
winner = true;
}
}
}
if(twoseven = true) {
if(threeseven = true) {
if(fourseven = true) {
winner = true;
}
}
}
if(twosix = true) {
if(threefive = true) {
if(fourfour = true) {
winner = true;
}
}
}
}
if(twotwo = true) {
if(twoone = true) {
if(twothree = true) {
if(twofour = true) {
winner = true;
}
}
}
if(twothree = true) {
if(twofour = true) {
if(twofive = true) {
winner = true;
}
}
}
if(threetwo = true) {
if(fourtwo = true) {
if(fivetwo = true) {
winner = true;
}
}
}
if(onetwo = true) {
if(threetwo = true) {
if(fourtwo = true) {
winner = true;
}
}
}
if(oneone = true) {
if(threethree = true) {
if(fourfour = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fourfour = true) {
if(fivefive = true) {
winner = true;
}
}
}
}
if(twofour = true) {
if(onethree = true) {
if(threefive = true) {
if(foursix = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fourtwo = true) {
if(fiveone = true) {
winner = true;
}
}
}
if(onefive = true) {
if(threethree = true) {
if(fourtwo = true) {
winner = true;
}
}
}
if(onethree = true) {
if(threefive = true) {
if(foursix = true) {
winner = true;
}
}
}
if(threefive = true) {
if(foursix = true) {
if(fiveseven = true) {
winner = true;
}
}
}
if(onefour = true) {
if(threefour = true) {
if(fourfour = true) {
winner = true;
}
}
}
if(threefour = true) {
if(fourfour = true) {
if(fivefour = true) {
winner = true;
}
}
}
if(twoone = true) {
if(twotwo = true) {
if(twothree = true) {
winner = true;
}
}
}
if(twotwo = true) {
if(twothree = true) {
if(twofive = true) {
winner = true;
}
}
}
if(twothree = true) {
if(twofive = true) {
if(twosix = true) {
winner = true;
}
}
}
if(twofive = true) {
if(twosix = true) {
if(twoseven = true) {
winner = true;
}
}
}
}
if(twosix = true) {
if(twothree = true) {
if(twofour = true) {
if(twofive = true) {
winner = true;
}
}
}
if(twofour = true) {
if(twofive = true) {
if(twoseven = true) {
winner = true;
}
}
}
if(onesix = true) {
if(threesix = true) {
if(foursix = true) {
winner = true;
}
}
}
if(threesix = true) {
if(foursix = true) {
if(fivesix = true) {
winner = true;
}
}
}
if(threefive = true) {
if(fourfour = true) {
if(fivethree = true) {
winner = true;
}
}
}
if(fourfour = true) {
if(fivethree = true) {
if(oneseven = true) {
winner = true;
}
}
}
}
if(threeone = true) {
if(fourone = true) {
if(fiveone = true) {
if(sixone = true) {
winner = true;
}
}
}
if(oneone = true) {
if(twoone = true) {
if(fourone = true) {
winner = true;
}
}
}
if(twoone = true) {
if(fourone = true) {
if(fiveone = true) {
winner = true;
}
}
}
if(twofour = true) {
if(threefive = true) {
if(foursix = true) {
winner = true;
}
}
}
if(threetwo = true) {
if(threethree = true) {
if(threefour = true) {
winner = true;
}
}
}
}
if(threethree = true) {
if(oneone = true) {
if(twotwo = true) {
if(fourfour = true) {
winner = true;
}
}
}
if(twotwo = true) {
if(fourfour = true) {
if(fivefive = true) {
winner = true;
}
}
}
if(fourfour = true) {
if(fivefive = true) {
if(sixsix = true) {
winner = true;
}
}
}
if(onethree = true) {
if(twothree = true) {
if(fourthree = true) {
winner = true;
}
}
}
if(twothree = true) {
if(fourthree = true) {
if(fivethree = true) {
winner = true;
}
}
}
if(fourthree = true) {
if(fivethree = true) {
if(sixthree = true) {
winner = true;
}
}
}
if(onefive = true) {
if(twofour = true) {
if(fourtwo = true) {
winner = true;
}
}
}
if(twofour = true) {
if(fourtwo = true) {
if(fiveone = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fourtwo = true) {
if(fiveone = true) {
winner = true;
}
}
}
if(threeone = true) {
if(threetwo = true) {
if(threefour = true) {
winner = true;
}
}
}
if(threetwo = true) {
if(threefour = true) {
if(threefive = true) {
winner = true;
}
}
}
if(threefour = true) {
if(threefive = true) {
if(threesix = true) {
winner = true;
}
}
}
}
if(threefive = true) {
if(onethree = true) {
if(twofour = true) {
if(foursix = true) {
winner = true;
}
}
}
if(twofour = true) {
if(foursix = true) {
if(fiveseven = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fourtwo = true) {
if(fiveone = true) {
winner = true;
}
}
}
if(oneseven = true) {
if(twosix = true) {
if(fourfour = true) {
winner = true;
}
}
}
if(twosix = true) {
if(fourfour = true) {
if(fivethree = true) {
winner = true;
}
}
}
if(fourfour = true) {
if(fivethree = true) {
if(sixtwo = true) {
winner = true;
}
}
}
if(onefive = true) {
if(twofive = true) {
if(fourfive = true) {
winner = true;
}
}
}
if(twofive = true) {
if(fourfive = true) {
if(fivefive = true) {
winner = true;
}
}
}
if(fourfive = true) {
if(fivefive = true) {
if(sixfive = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fourtwo = true) {
if(fiveone = true) {
winner = true;
}
}
}
if(threetwo = true) {
if(threethree = true) {
if(threefour = true) {
winner = true;
}
}
}
if(threethree = true) {
if(threefour = true) {
if(threesix = true) {
winner = true;
}
}
}
if(threefour = true) {
if(threesix = true) {
if(threeseven = true) {
winner = true;
}
}
}
}
if(threeseven = true) {
if(threefour = true) {
if(threefive = true) {
if(threesix = true) {
winner = true;
}
}
}
if(sixfour = true) {
if(fivefive = true) {
if(foursix = true) {
winner = true;
}
}
}
if(oneseven = true) {
if(twoseven = true) {
if(fourseven = true) {
winner = true;
}
}
}
if(twoseven = true) {
if(fourseven = true) {
if(fiveseven = true) {
winner = true;
}
}
}
if(fourseven = true) {
if(fiveseven = true) {
if(sixseven = true) {
winner = true;
}
}
}
}
if(fourtwo = true) {
if(fourone = true) {
if(fourthree = true) {
if(fourfour = true) {
winner = true;
}
}
}
if(fourthree = true) {
if(fourfour = true) {
if(fourfive = true) {
winner = true;
}
}
}
if(threeone = true) {
if(fivethree = true) {
if(sixfour = true) {
winner = true;
}
}
}
if(onetwo = true) {
if(twotwo = true) {
if(threetwo = true) {
winner = true;
}
}
}
if(twotwo = true) {
if(threetwo = true) {
if(fivetwo = true) {
winner = true;
}
}
}
if(threetwo = true) {
if(fivetwo = true) {
if(sixtwo = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fourtwo = true) {
if(fiveone = true) {
winner = true;
}
}
}
if(fiveone = true) {
if(threethree = true) {
if(twofour = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fourtwo = true) {
if(onefive = true) {
winner = true;
}
}
}
}
if(fourfour = true) {
if(oneone = true) {
if(twotwo = true) {
if(threethree = true) {
winner = true;
}
}
}
if(twotwo = true) {
if(threethree = true) {
if(fivefive = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fivefive = true) {
if(sixsix = true) {
winner = true;
}
}
}
if(oneseven = true) {
if(twosix = true) {
if(threefive = true) {
winner = true;
}
}
}
if(twosix = true) {
if(threefive = true) {
if(fivethree = true) {
winner = true;
}
}
}
if(threefive = true) {
if(fivethree = true) {
if(sixtwo = true) {
winner = true;
}
}
}
if(fourone = true) {
if(fourtwo = true) {
if(fourthree = true) {
winner = true;
}
}
}
if(fourtwo = true) {
if(fourthree = true) {
if(fourfive = true) {
winner = true;
}
}
}
if(fourthree = true) {
if(fourfive = true) {
if(foursix = true) {
winner = true;
}
}
}
if(fourfive = true) {
if(foursix = true) {
if(fourseven = true) {
winner = true;
}
}
}
if(onefour = true) {
if(twofour = true) {
if(threefour = true) {
winner = true;
}
}
}
if(twofour = true) {
if(threefour = true) {
if(fivefour = true) {
winner = true;
}
}
}
if(threefour = true) {
if(fivefour = true) {
if(sixfour = true) {
winner = true;
}
}
}
}
if(foursix = true) {
if(fourthree = true) {
if(fourfour = true) {
if(fourfive = true) {
winner = true;
}
}
}
if(fourfour = true) {
if(fourfive = true) {
if(fourseven = true) {
winner = true;
}
}
}
if(onethree = true) {
if(twofour = true) {
if(threefive = true) {
winner = true;
}
}
}
if(twofour = true) {
if(threefive = true) {
if(fiveseven = true) {
winner = true;
}
}
}
if(sixfour = true) {
if(fivefive = true) {
if(threeseven = true) {
winner = true;
}
}
}
if(onesix = true) {
if(twosix = true) {
if(threesix = true) {
winner = true;
}
}
}
if(twosix = true) {
if(threesix = true) {
if(fivesix = true) {
winner = true;
}
}
}
if(twosix = true) {
if(fivesix = true) {
if(sixsix = true) {
winner = true;
}
}
}
}
if(fiveone = true) {
if(twoone = true) {
if(threeone = true) {
if(fourone = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fourtwo = true) {
if(fiveone = true) {
winner = true;
}
}
}
if(fivetwo = true) {
if(fivethree = true) {
if(fivefour = true) {
winner = true;
}
}
}
if(twofour = true) {
if(twofive = true) {
if(threefour = true) {
winner = true;
}
}
}
}
if(fivetwo = true) {
if(twofive = true) {
if(threefour = true) {
if(fourthree = true) {
winner = true;
}
}
}
if(threefour = true) {
if(fourthree = true) {
if(sixone = true) {
winner = true;
}
}
}
if(fiveone = true) {
if(fivethree = true) {
if(fivefour = true) {
winner = true;
}
}
}
if(fivethree = true) {
if(fivefour = true) {
if(fivefive = true) {
winner = true;
}
}
}
if(twotwo = true) {
if(threetwo = true) {
if(fourtwo = true) {
winner = true;
}
}
}
if(threetwo = true) {
if(fourtwo = true) {
if(sixtwo = true) {
winner = true;
}
}
}
}
if(fivethree = true) {
if(twosix = true) {
if(threefive = true) {
if(fourfour = true) {
winner = true;
}
}
}
if(threefive = true) {
if(fourfour = true) {
if(sixtwo = true) {
winner = true;
}
}
}
if(twothree = true) {
if(threethree = true) {
if(fourthree = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fourthree = true) {
if(sixthree = true) {
winner = true;
}
}
}
if(fiveone = true) {
if(fivetwo = true) {
if(fivefour = true) {
winner = true;
}
}
}
if(fivetwo = true) {
if(fivefour = true) {
if(fivefive = true) {
winner = true;
}
}
}
if(fivefour = true) {
if(fivefive = true) {
if(fivesix = true) {
winner = true;
}
}
}
}
if(fivefour = true) {
if(fiveone = true) {
if(fivetwo = true) {
if(fivethree = true) {
winner = true;
}
}
}
if(fivetwo = true) {
if(fivethree = true) {
if(fivefive = true) {
winner = true;
}
}
}
if(fivethree = true) {
if(fivefive = true) {
if(fivesix = true) {
winner = true;
}
}
}
if(fivefive = true) {
if(fivesix = true) {
if(fiveseven = true) {
winner = true;
}
}
}
if(twoone = true) {
if(threetwo = true) {
if(fourthree = true) {
winner = true;
}
}
}
if(threetwo = true) {
if(fourthree = true) {
if(sixfive = true) {
winner = true;
}
}
}
if(twoseven = true) {
if(threesix = true) {
if(fourfive = true) {
winner = true;
}
}
}
if(threesix = true) {
if(fourfive = true) {
if(sixthree = true) {
winner = true;
}
}
}
if(twofour = true) {
if(threefour = true) {
if(fourfour = true) {
winner = true;
}
}
}
if(threefour = true) {
if(fourfour = true) {
if(sixfour = true) {
winner = true;
}
}
}
}
if(fivefive = true) {
if(fivetwo = true) {
if(fivethree = true) {
if(fivefour = true) {
winner = true;
}
}
}
if(fivethree = true) {
if(fivefour = true) {
if(fivesix = true) {
winner = true;
}
}
}
if(fivefour = true) {
if(fivesix = true) {
if(fiveseven = true) {
winner = true;
}
}
}
if(twotwo = true) {
if(threethree = true) {
if(fourfour = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fourfour = true) {
if(sixsix = true) {
winner = true;
}
}
}
if(twofive = true) {
if(threefive = true) {
if(fourfive = true) {
winner = true;
}
}
}
if(threefive = true) {
if(fourfive = true) {
if(sixfive = true) {
winner = true;
}
}
}
if(threeseven = true) {
if(foursix = true) {
if(sixfour = true) {
winner = true;
}
}
}
}
if(fivesix = true) {
if(twothree = true) {
if(threefour = true) {
if(fourfive = true) {
winner = true;
}
}
}
if(threefour = true) {
if(fourfive = true) {
if(sixseven = true) {
winner = true;
}
}
}
if(sixthree = true) {
if(sixfour = true) {
if(sixfive = true) {
winner = true;
}
}
}
if(sixfour = true) {
if(sixfive = true) {
if(sixseven = true) {
winner = true;
}
}
}
if(twosix = true) {
if(threesix = true) {
if(foursix = true) {
winner = true;
}
}
}
if(threesix = true) {
if(foursix = true) {
if(sixsix = true) {
winner = true;
}
}
}
}
if(fiveseven = true) {
if(twoseven = true) {
if(threeseven = true) {
if(fourseven = true) {
winner = true;
}
}
}
if(threeseven = true) {
if(fourseven = true) {
if(sixseven = true) {
winner = true;
}
}
}
if(twofour = true) {
if(threefive = true) {
if(foursix = true) {
winner = true;
}
}
}
if(fivefour = true) {
if(fivefive = true) {
if(fivesix = true) {
winner = true;
}
}
}
}
if(sixone = true) {
if(threefour = true) {
if(fourthree = true) {
if(fivetwo = true) {
winner = true;
}
}
}
if(threeone = true) {
if(fourone = true) {
if(fiveone = true) {
winner = true;
}
}
}
if(twosix = true) {
if(threesix = true) {
if(foursix = true) {
winner = true;
}
}
}
}
if(sixthree = true) {
if(threesix = true) {
if(fourfive = true) {
if(fivefour = true) {
winner = true;
}
}
}
if(threethree = true) {
if(fourthree = true) {
if(fivethree = true) {
winner = true;
}
}
}
if(sixone = true) {
if(sixtwo = true) {
if(sixfour = true) {
winner = true;
}
}
}
if(sixtwo = true) {
if(sixfour = true) {
if(sixfive = true) {
winner = true;
}
}
}
if(sixfour = true) {
if(sixfive = true) {
if(sixsix = true) {
winner = true;
}
}
}
}
if(sixfive = true) {
if(sixtwo = true) {
if(sixthree = true) {
if(sixfour = true) {
winner = true;
}
}
}
if(sixthree = true) {
if(sixfour = true) {
if(sixsix = true) {
winner = true;
}
}
}
if(sixfour = true) {
if(sixsix = true) {
if(sixseven = true) {
winner = true;
}
}
}
if(threefive = true) {
if(fourfive = true) {
if(fivefive = true) {
winner = true;
}
}
}
if(threetwo = true) {
if(fourthree = true) {
if(fivefour = true) {
winner = true;
}
}
}
}
if(sixseven = true) {
if(threefour = true) {
if(fourfive = true) {
if(fivesix = true) {
winner = true;
}
}
}
if(threeseven = true) {
if(fourseven = true) {
if(fiveseven = true) {
winner = true;
}
}
}
if(sixfour = true) {
if(sixfive = true) {
if(sixsix = true) {
winner = true;
}
}
}
System.out.println("Where would you like to play? (Row 1, 2, 3, etc)");
String row = scan.next();
if(row.equals("Row 1")) {
if(oneone = false) {
oneone = true;
}
else if(oneone = true) {
if(onetwo = false) {
onetwo = true;
}
else if(onetwo = true) {
if(onethree = false) {
onethree = true;
}
else if(onethree = true) {
if(onefour = false) {
onefour = true;
}
else if(onefour = true) {
if(onefive = false) {
onefive = true;
}
else if(onefive = true) {
if(onesix = false) {
onesix = true;
}
else if(onesix = true) {
if(oneseven = false) {
oneseven = true;
}
}
}
}
}
}
}
else if(row.equals("Row 2")) {
if(twoone = false) {
twoone = true;
}
else if(twoone = true) {
if(twotwo = false) {
twotwo = true;
}
else if(twotwo = true) {
if(twothree = false) {
onethree = true;
}
else if(twothree = true) {
if(twofour = false) {
onefour = true;
}
else if(twofour = true) {
if(twofive = false) {
onefive = true;
}
else if(twofive = true) {
if(twosix = false) {
twosix = true;
}
else if(twosix = true) {
if(twoseven = false) {
twoseven = true;
}
}
}
}
}
}
}
else if(row.equals("Row 3")) {
if(threeone = false) {
oneone = true;
}
else if(threeone = true) {
if(threetwo = false) {
threetwo = true;
}
else if(threetwo = true) {
if(threethree = false) {
threethree = true;
}
else if(threethree = true) {
if(threefour = false) {
threefour = true;
}
else if(threefour = true) {
if(threefive = false) {
threefive = true;
}
else if(threefive = true) {
if(threesix = false) {
threesix = true;
}
else if(threesix = true) {
if(threeseven = false) {
threeseven = true;
}
}
}
}
}
}
}
else if(row.equals("Row 4")) {
if(fourone = false) {
fourone = true;
}
else if(fourone = true) {
if(fourtwo = false) {
fourtwo = true;
}
else if(fourtwo = true) {
if(fourthree = false) {
fourthree = true;
}
else if(fourthree = true) {
if(fourfour = false) {
fourfour = true;
}
else if(fourfour = true) {
if(fourfive = false) {
fourfive = true;
}
else if(fourfive = true) {
if(foursix = false) {
foursix = true;
}
else if(foursix = true) {
if(fourseven = false) {
fourseven = true;
}
}
}
}
}
}
}
}
else if(row.equals("Row 5")) {
if(fiveone = false) {
fiveone = true;
}
else if(fiveone = true) {
if(fivetwo = false) {
fivetwo = true;
}
else if(fivetwo = true) {
if(fivethree = false) {
fivethree = true;
}
else if(fivethree = true) {
if(fivefour = false) {
fivefour = true;
}
else if(fivefour = true) {
if(fivefive = false) {
fivefive = true;
}
else if(fivefive = true) {
if(fivesix = false) {
fivesix = true;
}
else if(fivesix = true) {
if(fiveseven = false) {
fiveseven = true;
}
}
}
}
}
}
else if(row.equals("Row 6")) {
if(sixone = false) {
sixone = true;
}
else if(sixone = true) {
if(sixtwo = false) {
sixtwo = true;
}
else if(sixtwo = true) {
if(sixthree = false) {
sixthree = true;
}
else if(sixthree = true) {
if(sixfour = false) {
sixfour = true;
}
else if(sixfour = true) {
if(sixfive = false) {
sixfive = true;
}
else if(sixfive = true) {
if(sixsix = false) {
sixsix = true;
}
else if(sixsix = true) {
if(sixseven = false) {
sixseven = true;
}
}
}
}
}
}
}
}
}
}
I'm a TA for a CS class at my school, graded this submission for a connect 4 project, idk wtf happened with this persons thought process tbh.....
@Override
public ResponseEntity<AuditLogPagedResults> getLogEntries(
@ApiParam(value = "Environment ID", required = true) @PathVariable("environmentId") Long environmentId,
@ApiParam(value = "ID of the queue manager to browse") @Valid @RequestParam(value = "queueManager", required = false) Long queueManager,
@ApiParam(value = "ID of the queue to browse") @Valid @RequestParam(value = "queue", required = false) Long queue,
@ApiParam(value = "Browse for messages newer than a date/time") @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) @RequestParam(value = "from", required = false) @Valid LocalDateTime from,
@ApiParam(value = "Correlation ID to browse for") @Valid @RequestParam(value = "correlationId", required = false) String correlationId,
@ApiParam(value = "Page of results to return") @Valid @RequestParam(value = "page", required = false) Integer page,
@ApiParam(value = "Number of results in a page") @Valid @RequestParam(value = "pagesize", required = false) Integer pagesize) {
Pageable pageable = PageRequest.of(page != null ? page : 0, pagesize != null ? pagesize : defaultPageSize, new Sort(Sort.Direction.DESC, Audit.MSG_PUT_TIMESTAMP_FIELD));
Page<Audit> auditEntries = null;
Timestamp msgPut = (from != null ? Timestamp.valueOf(from) : null);
/*
* Environemnt is always supplied. If we have queue or queue manager, assume that's what the caller wants.
* We may also have some optional parameters - put timestamp, correlation ID
*/
if (queue != null) {
//retrieve queue name
String queueName = null;
Optional<WMQQueue> queueEntity = wmqQueueRepository.findById(queue.intValue());
queueName = queueEntity.get().getQ_name();
//see if we have timestamp or correlation ID
if (msgPut != null) {
if (correlationId != null) {
auditEntries = auditRepository.findByQNameAndCorrelIdAndMsgPutTimestampGreaterThanEqual(queueName, msgPut, correlationId, pageable);
} else {
auditEntries = auditRepository.findByQNameAndMsgPutTimestampGreaterThanEqual(queueName, msgPut, pageable);
}
} else {
if (correlationId != null) {
auditEntries = auditRepository.findByQNameAndCorrelId(queueName, correlationId, pageable);
} else {
auditEntries = auditRepository.findByQName(queueName, pageable);
}
}
} else if (queueManager != null) {
List<Integer> managerIds = Arrays.asList(queueManager.intValue());
//see if we have timestamp or correlation ID
if (msgPut != null) {
if (correlationId != null) {
auditEntries = auditRepository.findByManagerIdsAndCorrelIdAndMsgPutTimestampGreaterThanEqual(managerIds, msgPut, correlationId, pageable);
} else {
auditEntries = auditRepository.findByManagerIdsAndMsgPutTimestamp(managerIds, msgPut, pageable);
}
} else {
if (correlationId != null) {
auditEntries = auditRepository.findByManagerIdsAndCorrelId(managerIds, correlationId, pageable);
} else {
auditEntries = auditRepository.findByManagerIds(managerIds, pageable);
}
}
throw new java.lang.UnsupportedOperationException("Implementations does not exist");
} else {
List<Integer> managerIds = findManagerIds(environmentId);
if(managerIds.isEmpty()) {
//No QueueManager so no possible log entries
return ResponseEntity.ok().body(null);
}
if (msgPut != null) {
auditEntries = auditRepository.findByManagerIdsAndMsgPutTimestamp(managerIds, msgPut, pageable);
} else {
auditEntries = auditRepository.findByManagerIds(managerIds, pageable);
}
}
/*
if (correlationId != null && msgPut != null) {
auditEntries = auditRepository.findByCorrelIdAndMsgPutTimestampGreaterThanEqual(correlationId, msgPut, pageable);
} else if (queueName != null && msgPut != null) {
auditEntries = auditRepository.findByQNameAndMsgPutTimestampGreaterThanEqual(queueName, msgPut, pageable);
} else if (queueName != null) {
auditEntries = auditRepository.findByQName(queueName, pageable);
} else if (correlationId != null) {
auditEntries = auditRepository.findByCorrelId(correlationId, pageable);
} else {
List<Integer> managerIds = findManagerIds(environmentId);
if(managerIds.isEmpty()) {
//No QueueManager so no possible log entries
return ResponseEntity.ok().body(null);
}
if (msgPut != null) {
auditEntries = auditRepository.findByManagerIdsAndMsgPutTimestamp(managerIds, msgPut, pageable);
} else {
auditEntries = auditRepository.findByManagerIds(managerIds, pageable);
}
}
*/
if (auditEntries != null) {
AuditLogPagedResults results = new AuditLogPagedResults();
results.setPageNumber(pageable.getPageNumber());
results.setPageSize(pageable.getPageSize());
results.setPages(auditEntries.getTotalPages());
results.setResults(mapperFacade.mapAsList(auditEntries.getContent(), AuditLogEntry.class));
return ResponseEntity.ok().body(results);
} else {
throw new ResponseStatusException(HttpStatus.NOT_FOUND, "Not found");
}
}
/* (non-Javadoc)
* @see com.arcelormittal.springTemplate.web.MessagesApi#getLogEntry(java.lang.Long, java.lang.Long)
*/
@Override
public ResponseEntity<AuditLogEntry> getLogEntry(Long environmentId, Long logId) {
Optional<Audit> entry = auditRepository.findById(logId);
if (entry.isPresent()) {
return ResponseEntity.ok().body(mapperFacade.map(entry.get(), AuditLogEntry.class));
} else {
throw new ResponseStatusException(HttpStatus.NOT_FOUND, "Not found");
}
}
End pint to do a dynamic query in JPA.
if(!isset($obj->{'s5_4-1'})) {
$obj->{'s5_4-1'} = 0;
}
if(!isset($obj->{'s5_4-2'})) {
$obj->{'s5_4-2'} = 0;
}
if(!isset($obj->{'s5_4-3'})) {
$obj->{'s5_4-3'} = 0;
}
if(!isset($obj->{'s5_4-4'})) {
$obj->{'s5_4-4'} = 0;
}
$MaxSizeGB = [math]::Round($MaxSize/1024/1024/1024,2)
Write-Output " the maximum size is $MaxSizeGB GB"
At least [math] is used. So close, and yet so far...
elsif ( $att =~ m/!!ARRAY!!/ ) { # Updated to allow us to get data from an Array -
&Debug("get_value_from_hash:: parsing the ARRAY attribute - $att");
my ( $key1, $key2, $key3, $key4, $key5, $key6 ) = split( /\./, $att );
#&Debug("get_value_from_hash:: key1=$key1, key2=$key2, key3=$key3, key4=$key4, key5=$key5");
if ( defined $key6 ) {
if ( $key5 =~ m/!!ARRAY!!/ ) {
for my $item ( @{ $hash->{$key1}->{$key2}->{$key3}->{$key4} } ) { $value = $item->{$key6}; }
}
elsif ( $key4 =~ m/!!ARRAY!!/ ) {
for my $item ( @{ $hash->{$key1}->{$key2}->{$key3} } ) { $value = $item->{$key5}->{$key6}; }
}
elsif ( $key3 =~ m/!!ARRAY!!/ ) {
for my $item ( @{ $hash->{$key1}->{$key2} } ) { $value = $item->{$key4}->{$key5}->{$key6}; }
}
elsif ( $key2 =~ m/!!ARRAY!!/ ) {
for my $item ( @{ $hash->{$key1} } ) { $value = $item->{$key3}->{$key4}->{$key5}->{$key6}; }
}
elsif ( $key1 =~ m/!!ARRAY!!/ ) {
for my $item ( @{$hash} ) { $value = $item->{$key2}->{$key3}->{$key4}->{$key5}->{$key6}; }
}
}
elsif ( defined $key5 ) {
if ( $key4 =~ m/!!ARRAY!!/ ) {
for my $item ( @{ $hash->{$key1}->{$key2}->{$key3} } ) { $value = $item->{$key5}; }
}
elsif ( $key3 =~ m/!!ARRAY!!/ ) {
for my $item ( @{ $hash->{$key1}->{$key2} } ) { $value = $item->{$key4}->{$key5}; }
}
elsif ( $key2 =~ m/!!ARRAY!!/ ) {
for my $item ( @{ $hash->{$key1} } ) { $value = $item->{$key3}->{$key4}->{$key5}; }
}
elsif ( $key1 =~ m/!!ARRAY!!/ ) {
for my $item ( @{$hash} ) { $value = $item->{$key1}->{$key3}->{$key4}->{$key5}; }
}
}
elsif ( defined $key4 ) {
if ( $key3 =~ m/!!ARRAY!!/ ) {
for my $item ( @{ $hash->{$key1}->{$key2} } ) { $value = $item->{$key4}; }
}
elsif ( $key2 =~ m/!!ARRAY!!/ ) {
for my $item ( @{ $hash->{$key1} } ) { $value = $item->{$key3}->{$key4}; }
}
elsif ( $key1 =~ m/!!ARRAY!!/ ) {
for my $item ( @{$hash} ) { $value = $item->{$key1}->{$key3}->{$key4}; }
}
}
elsif ( defined $key3 ) {
if ( $key2 =~ m/!!ARRAY!!/ ) {
for my $item ( @{ $hash->{$key1} } ) { $value = $item->{$key3}; }
}
elsif ( $key1 =~ m/!!ARRAY!!/ ) {
for my $item ( @{$hash} ) { $value = $item->{$key3}; }
}
}
elsif ( defined $key2 ) {
if ( $key1 =~ m/!!ARRAY!!/ ) {
for my $item ( @{$hash} ) { $value = $item->{$key2}; }
}
}
}
elsif ( $att =~ m/!!HITS\[\d+\]!!/ ) {
&Debug("get_value_from_hash:: parsing the HITS attribute - $att");
my $id = $att;
$id =~ s/!!HITS\[(\d+)\]!!.*/$1/;
$att =~ s/!!HITS\[\d+\]!!\.//;
&Debug("get_value_from_hash:: parsing the attribute - $att");
my ( $key1, $key2, $key3, $key4, $key5, $key6 ) = split( /\./, $att );
#&Debug("get_value_from_hash:: id=$id, key1=$key1, key2=$key2, key3=$key3, key4=$key4, key5=$key5");
if ( defined $key6 ) {
$value = $$hash{hits}{hits}[$id]{$key1}{$key2}{$key3}{$key4}{$key5}{$key6};
}
elsif ( defined $key5 ) {
$value = $$hash{hits}{hits}[$id]{$key1}{$key2}{$key3}{$key4}{$key5};
}
elsif ( defined $key4 ) {
$value = $$hash{hits}{hits}[$id]{$key1}{$key2}{$key3}{$key4};
}
elsif ( defined $key3 ) {
$value = $$hash{hits}{hits}[$id]{$key1}{$key2}{$key3};
}
elsif ( defined $key2 ) {
$value = $$hash{hits}{hits}[$id]{$key1}{$key2};
}
}
elsif ( $att =~ m/!!DELIMITER!!.+!!/ ) {
&Debug("get_value_from_hash:: parsing the DELIMITER attribute - $att");
my $delimiter = $att;
$delimiter =~ s/!!DELIMITER!!(.*)!!.*/$1/;
$att =~ s/!!DELIMITER!!.+!!//;
&Debug("get_value_from_hash:: parsing the attribute - $att");
my ( $key1, $key2, $key3, $key4, $key5, $key6 ) = split( $delimiter, $att );
# &Debug("get_value_from_hash:: key1=$key1, key2=$key2, key3=$key3, key4=$key4, key5=$key5, key6=$key6");
if ( defined $key6 ) {
$value = $$hash{$key1}{$key2}{$key3}{$key4}{$key5}{$key6};
}
elsif ( defined $key5 ) {
$value = $$hash{$key1}{$key2}{$key3}{$key4}{$key5};
}
elsif ( defined $key4 ) {
$value = $$hash{$key1}{$key2}{$key3}{$key4};
}
elsif ( defined $key3 ) {
$value = $$hash{$key1}{$key2}{$key3};
}
elsif ( defined $key2 ) {
$value = $$hash{$key1}{$key2};
}
}
else {
&Debug("get_value_from_hash:: parsing the attribute - $att");
my ( $key1, $key2, $key3, $key4, $key5, $key6 ) = split( /\./, $att );
#&Debug("get_value_from_hash:: key1=$key1, key2=$key2, key3=$key3, key4=$key4, key5=$key5");
if ( defined $key6 ) {
$value = $$hash{$key1}{$key2}{$key3}{$key4}{$key5}{$key6};
}
elsif ( defined $key5 ) {
$value = $$hash{$key1}{$key2}{$key3}{$key4}{$key5};
}
elsif ( defined $key4 ) {
$value = $$hash{$key1}{$key2}{$key3}{$key4};
}
elsif ( defined $key3 ) {
$value = $$hash{$key1}{$key2}{$key3};
}
elsif ( defined $key2 ) {
$value = $$hash{$key1}{$key2};
}
}
When you try to debug, why value is not filled, and find this...
auto settingsFileSize = static_cast<int>(sizeof(_settings));
This was in release branch for a month. Casting wasn't even necessary.
// We have this enum.
enum Formula {
case proposition(String)
indirect case negation(Formula)
indirect case operation(op: String, lhs: Formula, rhs: Formula)
var nnf: Formula { /* ... */ }
}
// And now ...
switch formula.nnf {
case .proposition(_):
return formula.nnf
case .negation(_):
return formula.nnf
case .operation(_, _, _):
return formula.nnf
}