-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.jl
458 lines (320 loc) · 10.4 KB
/
demo.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
using Test #: @test
#from Test import: @test
_null :: Nothing = nothing
_val :: Int64 = -1
counter :: Int64 = 0
include("helper.jl")
# In Julia
# No need for a return keyword
#Q. What is not || ?
#A. ! ( || )
#Q. Do we return inside of `if` statement ?
#A. No, never (because we use the trinity: if elseif , else )
#
function isCondition( args :: Nothing; exceptionParameter = UnexpectedError )
try
answer = true
if args == true
elseif args == false
answer = false
else
writeError(msg)
end
answer
catch exceptionParameter
writeError(msg, exceptionParameter)
end
end
#Condition Handling
#=
The following condition is not preferred:
if condition
elseif ! condition
else
raise(exception )
end
which is replaced by:
if condition == true
elseif condition == false
else
raise(exception )
end
=#
# nill
#=
Every raise, should have an equivalent catch
=#
UnexpectedError = "UnexpectedError"
function isNothing( _obj :: Nothing ; correctAnswer= "nothing", exceptionParameter = UnexpectedError )
try
condition = _obj == nothing || _null isa Nothing
if condition == true
println("_obj == " + correctAnswer)
elseif condition == false
println("_obj != " + correctAnswer)
else
raise( exception(exceptionParameter)) #(exception(exceptionParameter))
end
catch exceptionParameter
writeError(msg, exceptionParameter)
end
end
# ! nill
function isNNothing( _obj :: Nothing ; exceptionParameter = UnexpectedError )
correctAnswer = true
condition = _obj == nothing || _null isa Nothing
if condition == true #_obj == nothing || _null isa Nothing
correctAnswer = false
println("_obj == nothing")
# check is not null
elseif condition == false #! ( _obj == nothing || _null isa Nothing )
println("_obj != nothing")
else
raise( exception(exceptionParameter) )
end
correctAnswer
#otherwise: null
#println("_obj == nothing")
# end
end
""" Handles Null value in `count` """
function handleNull( count :: Int64 ; exceptionParameter :: String = UnexpectedError )
try
_isNothing = isNothing(count)
correctAnswer = true
if _isNothing == false
correctAnswer = false
println(" _isNothing == false ")
elseif_isNothing == true
println(" _isNothing == true ")
else
raise(exception( exceptionParameter ))
end
_isNothing
catch exceptionParameter
writeError(msg, exceptionParameter)
end
end
""" isNEqual """
function isNEqual( _obj1 , _obj2 ; count = counter, exceptionParameter = UnexpectedError )
count, _isNothing = handleNullObject(count) #isNothing(count)
# if _isNothing == false
#correctAnswer = true
condition, correctAnswer = setCondition( obj1 != obj2 ) # obj1 == obj2)
#condition = Nothing(count)
if condition == false # obj1 != obj2 #_isNothing == false #_obj1 == _obj2
correctAnswer = false
println( "try " + count + ": " + _obj1 +" != "+_obj2+"" )
elseif condition == true # obj1 == obj2 #_isNothing == true
println( "try " + count + ": " + _obj1 +" == "+_obj2+"" )
#if Nothing(count) == true
#end
# current
#elseif Nothing(count) == false # true
# _isNothing = false
#handle not null
else
raise(exception(exceptionParameter))
end
count = incrementCounter(count) #count + 1 #increment count (for next time)
correctAnswer, count #return currectAnser with the new count
#if isNNothing(count) == true
# counter = count + 1
#end
end
# ==
"""" isEqual """
function isEqual( _obj1 , _obj2 ; count = counter )
count, _isNothing = handleNullObject(count)
#_isNothing = handleNullCount
condition, correctAnswer = setCondition(_obj1 == _obj2)
if condition == true # _obj1 == _obj2
println( "try " + count + ": " + _obj1 +" == "+_obj2+"" )
elseif condition == false
correctAnswer = false
println( "try " + count + ": " + _obj1 +" != "+_obj2+"" )
end
# current
count = incrementCounter(count) # count + 1
correctAnswer, count
end
# ===
function isEEqual( _obj1 , _obj2 ; count = counter )
condition = _obj1 === _obj2
if condition == true
println("try "+ count +": "+ _obj1 +" == "+_obj2+"")
counter = count + 1
elseif condition
end
end
# !==
function incrementCounter(count = counter )
handleNull(count)
count = count + 1
count
end
function isNEEqual( _obj1 , _obj2 ; count = counter, exceptionParameter = UnexpectedError )
condition = _obj1 !== _obj2
correctAnswer = true
if condition == true
println("try " + count +": "+ _obj1 +" == "+_obj2+"")
elseif condition == false
correctAnswer = false
else
raise(exception( exceptionParameter ))
end
count = incrementCounter(count) #count + 1
end
# !=
function isNEqual( _obj1, _obj2 ; count = counter)
try
correctAnswer = true
condition = _obj1 != _obj2
if condition == false
println("try "+ count +": "+ _obj1 +" != "+_obj2+"")
correctAnswer = false
elseif condition == true
println("try "+ count +": "+ _obj1 +" == "+_obj2+"")
count = incrementCounter(count) #count + 1
# elseif condition == false
# println("try "+ count +": "+ _obj1 +" != "+_obj2+"")
else
raise(exception(exceptionParameter))
end
correctAnswer, count
catch exceptionParameter
writeError(msg, exceptionParameter)
end
end
# !==
function isNEqual( _obj1, _obj2 ; count = counter)
condition = _obj1 !== _obj2
correctAnswer = true
if condition == false
elseif condition == true
println("try "+ count +": "+ _obj1 +" == "+_obj2+"")
count = incrementCounter(count) #count + 1
elseif condition == false
else exceptionParameter
end
end
# >
function islgt( _obj1, _obj2 ; count = counter, exceptionParameter = UnexpectedError)
try
condition = _obj1 > _obj2
correctAnswer = true
if !condition
correctAnswer = false
elseif condition
println("try "+ count +": "+ _obj1 +" == "+_obj2+"")
count = incrementCounter(count) #counter + 1
else exceptionParameter
raise(exception( exceptionParameter ) )
end
correctAnswer, count
catch exceptionParameter
writeError(msg, exceptionParameter)
end
end
# >=
function islgte( _obj1 , _obj2 ; count = counter , exceptionParameter = exceptionParameter)
try
condition, correctAnswer = setCondition(_obj1 >= _obj2)
if condition == false
correctAnswer = false
elseif condition == true
println("try "+ count +": "+ _obj1 +" == "+_obj2+"")
count = incrementCounter(count) #counter + 1
else
raise( exception( exceptionParameter))
end
correctAnswer, count
catch exceptionParameter
writeError(msg, exceptionParameter)
end
end
# <
function islst( _obj1, _obj2 ; count = counter )
condition, correctAnswer = setCondition(_obj1 < _obj2)
#condition = _obj1 < _obj2
if condition == false
correctAnswer = false
elseif condition == true
println("try "+ count +": "+ _obj1 +" < "+_obj2+"")
count = incrementCounter(count) #count + 1
elseif condition == false
println("try "+ count +": "+ _obj1 +" >= "+_obj2+"")
end
end
# <=
""" islste: is less than, or equals """
function islste(_obj1, _obj2 ; count = counter)
if _obj1 <= _obj2
println("try "+ counter +": "+ _obj1 +" == "+_obj2+"")
counter = counter + 1
elseif_obj1 > _obj2 #<---- #TODO: recheck
println("try "+ count +": "+ _obj1 +" >= "+_obj2+"")
end
end
# isa
## isa nothing
## isa Nothing
# ==
# == nothing true # works
if _null == nothing
println("try1: _null == nothing") # _val
end
if _null == ""
println("try2 : _null == ''")
end
# == Nothing false
if _null == Nothing
println("try3: _null == nothing")
# return _val
end
#isa
## nothing
## Nothing
if _null isa Nothing
println("try4: _null isa Nothing ")
#end
# return _val
end
## ''
#if _null isa "" # potenial # ERROR: isa, expected Type, got a value of type String
#println("try5: _null isa '' ")
#end
if _null === Nothing
println("try6: _null === nothing")
# return _val
end
#sophisticated function
function swapContent(aContent, bContent, arr)# compiles #; offset=1) #new! # lowerBound,upperBound,indicies in arr
contentSwapped = nothing
lowerBoundIndex = findall(_view -> _view == aContent, arr) # find an array of all matched indices of aContent in arr array
lowerBoundIndex = first(lowerBoundIndex) #lowerBound[offset]
upperBoundIndex = findall(_view -> _view == bContent, arr) # gets back array indicies of all matches of bContent in arr array
upperBoundIndex = last(upperBoundIndex) #fetch the last value
#copy(upperBound[length(upperBound)]) # -offset])
#Intent: Set lower upper bound to the Min, & Max possible
if aContent > bContent
arr[lowerBoundIndex], arr[upperBoundIndex] = arr[upperBoundIndex], arr[lowerBoundIndex] #swap
contentSwapped = true
println(arr[lowerBoundIndex]," ", arr[upperBoundIndex]," ",contentSwapped)
elseif aContent <= bContent
contentSwapped = false
println(arr[lowerBoundIndex]," ", arr[upperBoundIndex]," ", contentSwapped)
end
return lowerBoundIndex, upperBoundIndex, contentSwapped #returns index (more practical)
end
ar1 = [3,2,1]
a,b,isSwapped = swapContent(3,2,ar1)
+(0,1) + 1
#euclidDist IntervalLength4(a,b)
-(0,1)
#Test.
Test.@test 1 === 1
#@test -(0,1)+1 == +(0,1) +1
#-1 -1 = -2
#euclidDistDifference
#-(0,1)