task_name string | source_code string | compiler_asm string | object_asm string | shared_asm string | program_asm string |
|---|---|---|---|---|---|
C_1 | #include <assert.h>
#include <string.h>
// Return "Hello, MMCODEEVAL: Masssively Multilingual Code Evaluation"
char *hello_mmcodeeval(){
return "Hello, MMCODEEVAL: Masssively Multilingual Code Evaluation";
} | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _hello_mmcodeeval ; -- Begin function hello_mmcodeeval
.p2align 2
_hello_mmcodeeval: ; @hello_mmcodeeval
.cfi_startproc
; %bb.0:
adrp x0, l_.str@PAGE
add x0, x0, l_.str@PAGEOFF... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/000_C_1/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: 90000000 adrp x0, 0x0 <ltmp0>
4: 91000000 add x0, x0, #0x0
8: d65f03c0 ret
|
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/000_C_1/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000360 <_hello_mmcodeeval>:
360: 90000000 adrp x0, 0x0
364: 910db000 add x0, x0, #0x36c
368: d65f03c0 ret
|
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/000_C_1/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000378 <_hello_mmcodeeval>:
100000378: 90000000 adrp x0, 0x100000000
10000037c: 910e6000 add x0, x0, #0x398
100000380: d65f03c0 ret
0000000100000384... |
C_10 | #include <assert.h>
#include <stdio.h>
/*
Calculate the sum of even numbers in a given list.
Parameters:
- numbers (list): A list of integers.
- size (int): The size of the list.
Returns:
int: The sum of even numbers in the input list.
>>> calculate_even_sum([1,4,3,2,5], 5)
6
*/
int calculate_even_s... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _calculate_even_sum ; -- Begin function calculate_even_sum
.p2align 2
_calculate_even_sum: ; @calculate_even_sum
.cfi_startproc
; %bb.0:
sub sp, sp, #32
.cfi_def_cfa_offset 32
str... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/001_C_10/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d10083ff sub sp, sp, #0x20
4: f9000fe0 str x0, [sp, #0x18]
8: b90017e1 str w1, [sp, #0x14]
c: b90013ff ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/001_C_10/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000318 <_calculate_even_sum>:
318: d10083ff sub sp, sp, #0x20
31c: f9000fe0 str x0, [sp, #0x18]
320: b90017e1 str w1, [sp, #0x14]
... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/001_C_10/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000328 <_calculate_even_sum>:
100000328: d10083ff sub sp, sp, #0x20
10000032c: f9000fe0 str x0, [sp, #0x18]
100000330: b90017e1 str w1, [sp, #0x14]
... |
C_11 | #include <assert.h>
#include <stdio.h>
/*
Determine if two closed intervals intersect.
Args:
a, b: Representing the first closed interval [a, b] where 0 <= a <= b <= 1000.
c, d: Representing the second closed interval [c, d] where 0 <= c <= d <= 1000.
Returns:
int: 1 if the intervals intersect,... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _are_intervals_intersecting ; -- Begin function are_intervals_intersecting
.p2align 2
_are_intervals_intersecting: ; @are_intervals_intersecting
.cfi_startproc
; %bb.0:
sub sp, sp, #32
.cfi_def_cf... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/002_C_11/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d10083ff sub sp, sp, #0x20
4: b9001be0 str w0, [sp, #0x18]
8: b90017e1 str w1, [sp, #0x14]
c: b90013e2 ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/002_C_11/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000318 <_are_intervals_intersecting>:
318: d10083ff sub sp, sp, #0x20
31c: b9001be0 str w0, [sp, #0x18]
320: b90017e1 str w1, [sp, #... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/002_C_11/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000328 <_are_intervals_intersecting>:
100000328: d10083ff sub sp, sp, #0x20
10000032c: b9001be0 str w0, [sp, #0x18]
100000330: b90017e1 str w1, [sp,... |
C_12 | #include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
/*
You are given three digits a, b, c. Two of them are equal, but the third one is different from the other two. Find the value that occurs exactly once.
>>> extraNumber(0,0,1)
1
>>> extraNumber(4,3,4)
3
*/
int extraNumber(int... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _extraNumber ; -- Begin function extraNumber
.p2align 2
_extraNumber: ; @extraNumber
.cfi_startproc
; %bb.0:
sub sp, sp, #16
.cfi_def_cfa_offset 16
str w0, [sp, #8]
... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/003_C_12/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d10043ff sub sp, sp, #0x10
4: b9000be0 str w0, [sp, #0x8]
8: b90007e1 str w1, [sp, #0x4]
c: b90003e2 ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/003_C_12/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000318 <_extraNumber>:
318: d10043ff sub sp, sp, #0x10
31c: b9000be0 str w0, [sp, #0x8]
320: b90007e1 str w1, [sp, #0x4]
324: b... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/003_C_12/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000328 <_extraNumber>:
100000328: d10043ff sub sp, sp, #0x10
10000032c: b9000be0 str w0, [sp, #0x8]
100000330: b90007e1 str w1, [sp, #0x4]
100000334... |
C_13 | #include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
/*
Calculate the total score for a student based on the scores in different subjects.
Parameters:
- subject_scores (list): A list containing the scores for each subject.
Returns:
int: The total score obtained b... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _calculate_total_score ; -- Begin function calculate_total_score
.p2align 2
_calculate_total_score: ; @calculate_total_score
.cfi_startproc
; %bb.0:
sub sp, sp, #32
.cfi_def_cfa_offset 3... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/004_C_13/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d10083ff sub sp, sp, #0x20
4: b9001fe0 str w0, [sp, #0x1c]
8: b9001be1 str w1, [sp, #0x18]
c: b90017e2 ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/004_C_13/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000318 <_calculate_total_score>:
318: d10083ff sub sp, sp, #0x20
31c: b9001fe0 str w0, [sp, #0x1c]
320: b9001be1 str w1, [sp, #0x18]... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/004_C_13/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000328 <_calculate_total_score>:
100000328: d10083ff sub sp, sp, #0x20
10000032c: b9001fe0 str w0, [sp, #0x1c]
100000330: b9001be1 str w1, [sp, #0x1... |
C_14 | #include <assert.h>
#include <stdio.h>
#include <string.h>
/*
Decode a series of numbers to reveal the pattern and understand the actual values
each digit represents.
0000=4 8888=8 1234=1 5678=3 9012=2 1357=0 2468=4
Parameters:
- data_str: A string representing a series of numbers. Length does not exceed 100.
Return... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _decode_numbers ; -- Begin function decode_numbers
.p2align 2
_decode_numbers: ; @decode_numbers
.cfi_startproc
; %bb.0:
sub sp, sp, #96
stp x29, x30, [sp, #80] ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/005_C_14/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d10183ff sub sp, sp, #0x60
4: a9057bfd stp x29, x30, [sp, #0x50]
8: 910143fd add x29, sp, #0x50
c: 90000... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/005_C_14/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000400 <_decode_numbers>:
400: d10183ff sub sp, sp, #0x60
404: a9057bfd stp x29, x30, [sp, #0x50]
408: 910143fd add x29, sp, #0x50
... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/005_C_14/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000410 <_decode_numbers>:
100000410: d10183ff sub sp, sp, #0x60
100000414: a9057bfd stp x29, x30, [sp, #0x50]
100000418: 910143fd add x29, sp, #0x50... |
C_15 | #include <assert.h>
#include <stdio.h>
/*
Counts the number of different coloring methods for n squares with m colors,
considering the requirement that adjacent squares and the first/last squares
must have different colors.
Args:
- n (int): The number of squares.
- m (int): The number of colors.
Returns:
in... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _count_coloring_methods ; -- Begin function count_coloring_methods
.p2align 2
_count_coloring_methods: ; @count_coloring_methods
.cfi_startproc
; %bb.0:
stp x28, x27, [sp, #-32]! ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/006_C_15/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: a9be6ffc stp x28, x27, [sp, #-0x20]!
4: a9017bfd stp x29, x30, [sp, #0x10]
8: 910043fd add x29, sp, #0x10
... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/006_C_15/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000400 <_count_coloring_methods>:
400: a9be6ffc stp x28, x27, [sp, #-0x20]!
404: a9017bfd stp x29, x30, [sp, #0x10]
408: 910043fd ad... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/006_C_15/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000410 <_count_coloring_methods>:
100000410: a9be6ffc stp x28, x27, [sp, #-0x20]!
100000414: a9017bfd stp x29, x30, [sp, #0x10]
100000418: 910043fd ... |
C_16 | #include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
/*
Count the number of valid coin toss sequences with no consecutive heads in n tosses.
Parameters:
- n (int): The number of coin tosses.
Returns:
unsigned long long: The count of valid sequences.
>>> co... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _count_valid_coin_toss_sequences ; -- Begin function count_valid_coin_toss_sequences
.p2align 2
_count_valid_coin_toss_sequences: ; @count_valid_coin_toss_sequences
.cfi_startproc
; %bb.0:
stp x28, x27, [sp... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/007_C_16/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: a9be6ffc stp x28, x27, [sp, #-0x20]!
4: a9017bfd stp x29, x30, [sp, #0x10]
8: 910043fd add x29, sp, #0x10
... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/007_C_16/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000400 <_count_valid_coin_toss_sequences>:
400: a9be6ffc stp x28, x27, [sp, #-0x20]!
404: a9017bfd stp x29, x30, [sp, #0x10]
408: 910043f... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/007_C_16/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000410 <_count_valid_coin_toss_sequences>:
100000410: a9be6ffc stp x28, x27, [sp, #-0x20]!
100000414: a9017bfd stp x29, x30, [sp, #0x10]
100000418: 9100... |
C_17 | #include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
/*
Find the length of the longest consecutive sequence of 1s in the binary representation of a non-negative integer.
Parameters:
- n (unsigned long long): A non-negative integer (0 ≤ n ≤ 2^64 - 1).
Returns:
... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _find_longest_consecutive_ones_length ; -- Begin function find_longest_consecutive_ones_length
.p2align 2
_find_longest_consecutive_ones_length: ; @find_longest_consecutive_ones_length
.cfi_startproc
; %bb.0:
su... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/008_C_17/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d10043ff sub sp, sp, #0x10
4: f90007e0 str x0, [sp, #0x8]
8: b90007ff str wzr, [sp, #0x4]
c: b90003ff ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/008_C_17/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000318 <_find_longest_consecutive_ones_length>:
318: d10043ff sub sp, sp, #0x10
31c: f90007e0 str x0, [sp, #0x8]
320: b90007ff str w... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/008_C_17/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000328 <_find_longest_consecutive_ones_length>:
100000328: d10043ff sub sp, sp, #0x10
10000032c: f90007e0 str x0, [sp, #0x8]
100000330: b90007ff str... |
C_18 | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
/*
Creates an ID by combining two words in a specific manner.
Parameters:
- word1 (char*): The first word to be used in the ID.
- word2 (char*): The second word to be used in the ID.
Returns:
char*: A divine ID formed by reversing every o... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _create_id ; -- Begin function create_id
.p2align 2
_create_id: ; @create_id
.cfi_startproc
; %bb.0:
sub sp, sp, #80
stp x29, x30, [sp, #64] ; 16-byte... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/009_C_18/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d10143ff sub sp, sp, #0x50
4: a9047bfd stp x29, x30, [sp, #0x40]
8: 910103fd add x29, sp, #0x40
c: f81f8... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/009_C_18/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000400 <_create_id>:
400: d10143ff sub sp, sp, #0x50
404: a9047bfd stp x29, x30, [sp, #0x40]
408: 910103fd add x29, sp, #0x40
4... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/009_C_18/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000410 <_create_id>:
100000410: d10143ff sub sp, sp, #0x50
100000414: a9047bfd stp x29, x30, [sp, #0x40]
100000418: 910103fd add x29, sp, #0x40
1000... |
C_19 | #include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
/*
Count the number of different permutation schemes for a binary string of length n,
where the number of '1's is m and the number of '0's is n - m.
Parameters:
- n (int): Length of the binary string.
- m (int): Numbe... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _count_permutations_of_binary_string ; -- Begin function count_permutations_of_binary_string
.p2align 2
_count_permutations_of_binary_string: ; @count_permutations_of_binary_string
.cfi_startproc
; %bb.0:
sub s... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/010_C_19/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d10103ff sub sp, sp, #0x40
4: b9003be0 str w0, [sp, #0x38]
8: b90037e1 str w1, [sp, #0x34]
c: 1e6e1000 ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/010_C_19/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000318 <_count_permutations_of_binary_string>:
318: d10103ff sub sp, sp, #0x40
31c: b9003be0 str w0, [sp, #0x38]
320: b90037e1 str w... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/010_C_19/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000328 <_count_permutations_of_binary_string>:
100000328: d10103ff sub sp, sp, #0x40
10000032c: b9003be0 str w0, [sp, #0x38]
100000330: b90037e1 str... |
C_2 | #include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
/*
Calculate the area of a triangle given its three sides.
Parameters:
- a (float): Length of side 'a'.
- b (float): Length of side 'b'.
- c (float): Length of side 'c'.
Returns:
- str: If the provided sides form... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _calculate_triangle_area ; -- Begin function calculate_triangle_area
.p2align 2
_calculate_triangle_area: ; @calculate_triangle_area
.cfi_startproc
; %bb.0:
sub sp, sp, #48
.cfi_def_cfa_offs... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/011_C_2/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d100c3ff sub sp, sp, #0x30
4: fd0013e0 str d0, [sp, #0x20]
8: fd000fe1 str d1, [sp, #0x18]
c: fd000be2 ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/011_C_2/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000310 <_calculate_triangle_area>:
310: d100c3ff sub sp, sp, #0x30
314: fd0013e0 str d0, [sp, #0x20]
318: fd000fe1 str d1, [sp, #0x18... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/011_C_2/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000328 <_calculate_triangle_area>:
100000328: d100c3ff sub sp, sp, #0x30
10000032c: fd0013e0 str d0, [sp, #0x20]
100000330: fd000fe1 str d1, [sp, #0x... |
C_20 | #include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
/*
Answer a series of questions by providing choices A, B, C, or D for each question.
Question 1:
Constants like 1e6 belong to which data type?
A. unsigned int
B. int
C. float
... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _answer_questions ; -- Begin function answer_questions
.p2align 2
_answer_questions: ; @answer_questions
.cfi_startproc
; %bb.0:
adrp x0, l_.str@PAGE
add x0, x0, l_.str@PAGEOFF... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/012_C_20/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: 90000000 adrp x0, 0x0 <ltmp0>
4: 91000000 add x0, x0, #0x0
8: d65f03c0 ret
|
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/012_C_20/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000368 <_answer_questions>:
368: 90000000 adrp x0, 0x0
36c: 910dd000 add x0, x0, #0x374
370: d65f03c0 ret
|
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/012_C_20/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000378 <_answer_questions>:
100000378: 90000000 adrp x0, 0x100000000
10000037c: 910e6000 add x0, x0, #0x398
100000380: d65f03c0 ret
000000010000038... |
C_21 | #include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
/*
The task is to determine if it is possible to assemble the wooden squares from n buckets,
where each bucket contains $a_i$ squares with a side length of 1, into a single larger square.
Input: length of list, array of nu... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _Is_Square ; -- Begin function Is_Square
.p2align 2
_Is_Square: ; @Is_Square
.cfi_startproc
; %bb.0:
sub sp, sp, #32
.cfi_def_cfa_offset 32
str w0, [sp, #28]
st... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/013_C_21/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d10083ff sub sp, sp, #0x20
4: b9001fe0 str w0, [sp, #0x1c]
8: f9000be1 str x1, [sp, #0x10]
c: f90007ff ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/013_C_21/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000318 <_Is_Square>:
318: d10083ff sub sp, sp, #0x20
31c: b9001fe0 str w0, [sp, #0x1c]
320: f9000be1 str x1, [sp, #0x10]
324: f... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/013_C_21/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000328 <_Is_Square>:
100000328: d10083ff sub sp, sp, #0x20
10000032c: b9001fe0 str w0, [sp, #0x1c]
100000330: f9000be1 str x1, [sp, #0x10]
100000334... |
C_22 | #include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
/*
Given integers c and d, where a + b = c and a * b = d, find and return the possible value of a (a <= b). If there are multiple groups, output the group with the smallest a.
Parameters:
- c (int): The sum of a an... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _find_integers ; -- Begin function find_integers
.p2align 2
_find_integers: ; @find_integers
.cfi_startproc
; %bb.0:
sub sp, sp, #16
.cfi_def_cfa_offset 16
str w0, [sp, ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/014_C_22/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d10043ff sub sp, sp, #0x10
4: b9000be0 str w0, [sp, #0x8]
8: b90007e1 str w1, [sp, #0x4]
c: b90003ff ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/014_C_22/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000318 <_find_integers>:
318: d10043ff sub sp, sp, #0x10
31c: b9000be0 str w0, [sp, #0x8]
320: b90007e1 str w1, [sp, #0x4]
324:... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/014_C_22/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000328 <_find_integers>:
100000328: d10043ff sub sp, sp, #0x10
10000032c: b9000be0 str w0, [sp, #0x8]
100000330: b90007e1 str w1, [sp, #0x4]
1000003... |
C_23 | #include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
/*
Count the number of acute-angled triangles that can be formed by selecting any 3 edges out of a given set of edges.
Args:
- edges_count: The number of edges passed.
- An arbi... | .section __TEXT,__text,regular,pure_instructions
.build_version macos, 15, 0 sdk_version 15, 5
.globl _count_acute_triangles ; -- Begin function count_acute_triangles
.p2align 2
_count_acute_triangles: ; @count_acute_triangles
.cfi_startproc
; %bb.0:
sub sp, sp, #80
stp x29, x30, [sp, #6... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/015_C_23/code.o: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000000 <ltmp0>:
0: d10143ff sub sp, sp, #0x50
4: a9047bfd stp x29, x30, [sp, #0x40]
8: 910103fd add x29, sp, #0x40
c: b81fc... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/015_C_23/code.dylib: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000000000400 <_count_acute_triangles>:
400: d10143ff sub sp, sp, #0x50
404: a9047bfd stp x29, x30, [sp, #0x40]
408: 910103fd add x29, sp, ... |
/Users/alexander.pretko/McEval/generated_mceval_arm64_mac/O0/015_C_23/code.program: file format mach-o arm64
Disassembly of section __TEXT,__text:
0000000100000410 <_count_acute_triangles>:
100000410: d10143ff sub sp, sp, #0x50
100000414: a9047bfd stp x29, x30, [sp, #0x40]
100000418: 910103fd add x29, sp... |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 42